home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
090
/
jazclib1.arc
/
JZWRTSTR.C
< prev
next >
Wrap
Text File
|
1986-01-16
|
302b
|
16 lines
jzwrtstr ( fstr , frow , fcol , fattr )
char *fstr;
int frow,fcol,fattr;
{
while (*fstr) {
jzloccur(frow,fcol);
jzwrtchr(*fstr++,fattr,1);
++ fcol;
if (fcol > 79) {
fcol = 0;
if (frow == 24) jzscrlup( 0x100,0x184f,1,fattr);
else ++ frow;
}
}
}